# List asset classes by type

Returns the list of asset classes associated with the specified general asset type within the current account context.
            
Behavior:
- Validates the asset type belongs to the account
- Retrieves associated asset classes for the given asset type identifier
- Returns structured asset class response data
- Logs the action as an equipment type list view event

Endpoint: GET /api/v1/assets/general/assettypes/{assetTypeIdentifier}/assetclass/list

## Path parameters:

  - `assetTypeIdentifier` (string, required)

## Response 200 fields (text/plain):

  - `data` (array,null)

  - `data.assetClassId` (string)

  - `data.assetClassName` (string,null)

  - `data.assetType` (object)

  - `data.assetType.assetTypeId` (string)

  - `data.assetType.assetTypeName` (string,null)

  - `data.assetClassSymbol` (object)

  - `data.assetClassSymbol.symbolId` (string)

  - `data.assetClassSymbol.symbolName` (string,null)

  - `data.assetClassSymbol.gisSymbolIcon` (string,null)

  - `data.assetClassSymbol.symbolColorCode` (string,null)

  - `data.assetClassSymbol.dwgSymbolMode` (boolean)

  - `data.responseDescription` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


